home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / proc / sun3.md / procAOUT.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  3KB  |  83 lines

  1. /*
  2.  * procAOUT.h --
  3.  *
  4.  *    The a.out format for an object file.
  5.  *
  6.  * Copyright (C) 1985, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/proc/sun3.md/procAOUT.h,v 9.0 89/09/12 15:16:10 douglis Stable $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _PROCAOUT
  20. #define _PROCAOUT
  21.  
  22. #include "sprite.h"
  23.  
  24. #ifdef KERNEL
  25. #include "vm.h"
  26. #else
  27. #include <kernel/vm.h>
  28. #endif
  29.  
  30. #define    NEW_PAGE_SIZE        0x2000
  31. #ifdef sun4
  32. #define    NEW_SEG_SIZE        0x40000
  33. #else
  34. #define    NEW_SEG_SIZE        0x20000
  35. #endif
  36.  
  37. /*
  38.  * Header prepended to each a.out file.
  39.  */
  40.  
  41. typedef struct {
  42.     unsigned short     machineType;    /* machine type */
  43.     unsigned short     magic;        /* magic number */
  44.     unsigned long    code;        /* Size of code segment */
  45.     unsigned long    data;        /* Size of initialized data */
  46.     unsigned long    bss;        /* Size of uninitialized data */
  47.     unsigned long    syms;        /* Size of symbol table */
  48.     unsigned long    entry;        /* Entry point */
  49.     unsigned long    trsize;        /* Size of text relocation */
  50.     unsigned long    drsize;        /* Size of data relocation */
  51. } Proc_AOUT;
  52.  
  53. #define    PROC_OMAGIC    0407        /* Old impure format */
  54. #define    PROC_NMAGIC    0410        /* Read-only text */
  55. #define    PROC_ZMAGIC    0413        /* Demand load format */
  56. #define PROC_MC68010    1        /* runs on '10 or '20 */
  57. #define PROC_MC68020    2        /* runs on '20 only */
  58. #define    PROC_SPARC    3        /* runs on SPARC only */
  59.  
  60. /*
  61.  * Macros which take exec structures as arguments and tell whether
  62.  * the file has a reasonable magic number or offsets to text|symbols|strings.
  63.  */
  64. #define    PROC_BAD_MAGIC_NUMBER(x) \
  65.     (((x).magic)!=PROC_ZMAGIC)
  66.  
  67. #define    PROC_CODE_FILE_OFFSET(x) \
  68.     ((x).magic==PROC_ZMAGIC ? 0 : sizeof (Proc_AOUT))
  69. #define    PROC_DATA_FILE_OFFSET(x) \
  70.     (PROC_CODE_FILE_OFFSET(x) + (x).code)
  71.  
  72. /*
  73.  * Macros which take exec structures as arguments and tell where the
  74.  * various pieces will be loaded.
  75.  */
  76. #define PROC_CODE_LOAD_ADDR(x) NEW_PAGE_SIZE
  77. #define PROC_DATA_LOAD_ADDR(x) \
  78.     (((x).magic==PROC_OMAGIC)? (PROC_CODE_LOAD_ADDR(x)+(x).code) \
  79.     : (NEW_SEG_SIZE+((PROC_CODE_LOAD_ADDR(x)+(x).code-1) & ~(NEW_SEG_SIZE-1))))
  80. #define PROC_BSS_LOAD_ADDR(x)  (PROC_DATA_LOAD_ADDR(x)+(x).data)
  81.  
  82. #endif /* _PROCAOUT */
  83.